home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Magazine / C_Tutorial / Part-1 / helloworld.c < prev   
Encoding:
C/C++ Source or Header  |  1997-06-05  |  62 b   |  7 lines

  1. #include<stdio.h>
  2.  
  3. void main()
  4. {
  5.     printf("Hello World!\n");
  6. }
  7.